home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / execve.c,v < prev    next >
Text File  |  1991-12-20  |  3KB  |  137 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.10.28.08.58.01;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.16.17.49;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.09.30.20.49.32;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Added trap door to allow processes to be put into the debugger.
  32. @
  33. text
  34. @/* 
  35.  * execve.c --
  36.  *
  37.  *    Procedure to emulate the UNIX execve kernel call under Sprite.
  38.  *
  39.  * Copyright (C) 1986 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: execve.c,v 1.1 88/06/19 16:17:49 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "sprite.h"
  54. #include "proc.h"
  55.  
  56. #include "compatInt.h"
  57.  
  58. /*
  59.  * The variable below is a secret trap door that can be set
  60.  * to non-zero to force the next exec to put the process into
  61.  * the debugger before it executes its first instruction.
  62.  */
  63.  
  64. int _execDebug = 0;
  65.  
  66.  
  67. /*
  68.  *----------------------------------------------------------------------
  69.  *
  70.  * execve --
  71.  *
  72.  *    Procedure to map from Unix execve system call to Sprite Proc_ExecEnv.
  73.  *
  74.  * Results:
  75.  *    execve() should never return.  If it does, however, UNIX_ERROR is
  76.  *    returned.
  77.  *
  78.  * Side effects:
  79.  *    Any open streams are closed, then the process invoking execve() is
  80.  *    terminated.
  81.  *
  82.  *----------------------------------------------------------------------
  83.  */
  84.  
  85. int
  86. execve(name, argv, envp)
  87.     char *name;            /* name of file to exec */
  88.     char *argv[];        /* array of arguments */
  89.     char *envp[];        /* array of environment pointers */
  90. {
  91.     ReturnStatus status;    /* result returned by Sprite system calls  */
  92.  
  93.     status = Proc_ExecEnv(name, argv, envp, _execDebug);
  94.  
  95.     /*
  96.      * We should never reach this point, regardless of status value.
  97.      */
  98.  
  99.     errno = Compat_MapCode(status);
  100.     return(UNIX_ERROR);
  101. }
  102. @
  103.  
  104.  
  105. 1.2.1.1
  106. log
  107. @Initial branch for Sprite server.
  108. @
  109. text
  110. @d17 1
  111. a17 1
  112. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/execve.c,v 1.2 88/10/28 08:58:01 ouster Exp $ SPRITE (Berkeley)";
  113. @
  114.  
  115.  
  116. 1.1
  117. log
  118. @Initial revision
  119. @
  120. text
  121. @d17 1
  122. a17 1
  123. static char rcsid[] = "$Header: exec.c,v 1.1 88/06/19 14:31:15 ouster Exp $ SPRITE (Berkeley)";
  124. d25 8
  125. d60 1
  126. a60 4
  127.     /*
  128.      * Call Proc_Exec with debugMe set to FALSE.
  129.      */
  130.     status = Proc_ExecEnv(name, argv, envp, FALSE);
  131. a64 4
  132.      /*
  133.       * For now return all low numbered error codes directly through because
  134.       * fs doesn't map the unix error codes to Sprite error codes.
  135.       */
  136. @
  137.